   :root{
      --bg: #0F0F0F;
      --bg2:#1A1A1A;
      --text:#EAEAEA;
      --muted:#B0B0B0;
      --gold:#F5C518;
    }

    *{box-sizing:border-box; margin:0; padding:0;}

    body{
      background: var(--bg);
      color: var(--text);
      font-family: system-ui, sans-serif;
    }

    /* NAVBAR */
    .navbar{
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(15,15,15,0.95);
      border-bottom: 1px solid var(--bg2);
      padding: 20px 24px;
    }

    .brand{
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text);
      font-weight: 700;
    }

    .brand-badge{
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--gold), #caa10f);
      display: grid;
      place-items: center;
      color: #111;
      font-weight: 900;
    }

    .nav-links{
      list-style: none;
      display: flex;
      gap: 18px;
    }

    .nav-links a{
      color: var(--muted);
      text-decoration: none;
      font-weight: 600;
      padding: 10px 14px;
      font-size: 1.1rem;
      border-radius: 8px;
      transition: 0.2s;
    }

    .nav-links a:hover{
      color: var(--text);
      background: rgba(245,197,24,0.08);
    }

    .navbar-toggler-icon{
      filter: invert(1);
    }

    @media (max-width: 768px){
      .nav-links a{padding: 8px 10px; font-size: 1rem;}
    }

    /* SLIDER */
    .slider-wrapper{
      position: relative;
      display: flex;
      justify-content: center;
      margin: 40px 0 80px;
    }

    .slider-container{
      width: 70%;
      max-width: 1200px;
      aspect-ratio: 16/9;
      overflow: hidden;
      border-radius: 18px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.6);
      position: relative;
    }

    .carousel, .carousel-inner, .carousel-item{
      height: 100%;
    }

    .carousel-item img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Slider Üstü Yazı Kutusu */
    .slider-text-box{
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0,0,0,0.6);
      border-radius: 18px;
      padding: 20px 30px;
      text-align: center;
      color: var(--gold);
      max-width: 80%;
      box-shadow: 0 12px 35px rgba(0,0,0,0.55);
      backdrop-filter: blur(6px);
      display: block;
    }

    .slider-text-box b{display: block; font-size: 1.2rem; margin-bottom: 5px;}
    .slider-text-box p{font-size: 1rem; line-height: 1.5; margin: 0;}

    @media (max-width: 768px){
      .slider-container{width: 90%;}
      .slider-text-box{padding: 15px 20px; font-size: 0.9rem; max-width: 90%;}
    }

    @media (max-width: 576px){
      .slider-text-box{padding: 12px 15px; font-size: 0.85rem; max-width: 95%;}
    }

    /* KARTLAR */
    .custom-card{
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(245,197,24,0.2);
      border-radius: 16px;
      color: var(--text);
      transition: 0.3s;
      box-shadow: 0 10px 30px rgba(0,0,0,0.5);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      height: 100%;
    }

    .custom-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    }

    .custom-card img{
      width: 100%;
      height: 100%;
      object-fit: cover; /* resim kutucuğu tamamen kaplasın */
      display: block;
      flex-grow: 1;
    }

    .custom-card .card-body{
      padding: 8px 10px;
      text-align: center;
      background: rgba(0,0,0,0.3);
    }

    .custom-card .card-body p{
      margin: 0;
      font-weight: 600;
      color: var(--gold);
      font-size: 0.9rem;
    }
     /* YAZI BOX */
    .yazı-box{
      max-width: 900px;
      margin: 50px auto;
      background: rgba(255,255,255,0.03);
      border-radius: 18px;
      border: 1px solid rgba(245,197,24,0.18);
      padding: 30px 40px;
      text-align: center;
      color: var(--gold);
      box-shadow: 0 12px 35px rgba(0,0,0,0.55);
      backdrop-filter: blur(6px);
    }

    .yazı-box .social-icons{
      margin-bottom: 20px;
    }

    .yazı-box .social-icons a{
      color: var(--gold);
      font-size: 1.5rem;
      margin: 0 10px;
      transition: 0.3s;
    }

    .yazı-box .social-icons a:hover{
      color: #FFD84D;
    }

    /* DROPDOWN MENÜ */
    .navbar .dropdown-menu{
      background: #111;
      border: 1px solid rgba(245,197,24,0.25);
      border-radius: 12px;
      opacity: 0;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      display: block;
      visibility: hidden;
      min-width: 180px;
      z-index: 1000;
    }

    .navbar .dropdown:hover > .dropdown-menu,
    .navbar .dropdown.show > .dropdown-menu {
      opacity: 1;
      transform: translateY(0);
      visibility: visible;
    }

    .navbar .dropdown-item{
      color: #B0B0B0;
      font-weight: 600;
      padding: 10px 15px;
      transition: 0.2s;
    }

    .navbar .dropdown-item:hover{
      background: rgba(245,197,24,0.15);
      color: #F5C518;
    }

    @media (max-width: 768px){
      .navbar .dropdown-menu{
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        border-radius: 8px;
        margin-top: 0;
      }
    }
        /* Yazı-box linkleri temaya uygun hale getirildi */
.yazı-box .yazı-link {
  color: var(--gold);
  text-decoration: none;
  transition: 0.3s;
}

.yazı-box .yazı-link:hover {
  color: #FFD84D;
  text-decoration: underline;
}